From: kaf24@firebug.cl.cam.ac.uk Date: Thu, 11 May 2006 12:45:10 +0000 (+0100) Subject: x86/64 has the wrong number of arguments defined for HYPERVISOR_xenoprof_op. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16047^2~86 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=3ae4dcdda2e0a7d3c41caccccfe3937db788a077;p=xen.git x86/64 has the wrong number of arguments defined for HYPERVISOR_xenoprof_op. Signed-off-by: Ray Bryant --- diff --git a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h index 7364dce57e..d2e4da728c 100644 --- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h +++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h @@ -355,9 +355,9 @@ HYPERVISOR_callback_op( static inline int HYPERVISOR_xenoprof_op( - int op, unsigned long arg1, unsigned long arg2) + int op, void *arg) { - return _hypercall3(int, xenoprof_op, op, arg1, arg2); + return _hypercall2(int, xenoprof_op, op, arg); } #endif /* __HYPERCALL_H__ */